import type { ComponentProps, InputHTMLAttributes } from 'react';
import type { SelectInput } from '../SelectInput';
import type { Sizes } from './types';
type SelectableCardOptionGroupContextType = {
groupName?: string;
groupValue?: string;
error: boolean;
onChangeOption: (value: string) => void;
disabled?: boolean;
size: Sizes;
optionValue?: ComponentProps['value'];
} & Required, 'onChange'>> & Pick, 'required'>;
export declare const SelectableCardOptionGroupContext: import("react").Context;
export declare const useSelectableCardOptionGroup: () => SelectableCardOptionGroupContextType;
export {};
//# sourceMappingURL=Provider.d.ts.map